home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / umbdr522.zip / UMB_DRVR.DOC next >
Text File  |  1992-02-20  |  65KB  |  1,323 lines

  1. UMB_DRVR.DOC       Version 5.22             02/20/92             Page 1
  2.  
  3.  
  4.                       UMB_DRVR.SYS Device Driver
  5.            UMB provider for DOS 5.0 on 286 / 386 / 486 systems
  6.               Copyright (C) 1991, 1992 All Rights Reserved
  7.  
  8.      Christopher Blum          CompuServe: 76625,1041
  9.      1022 East Wayne Avenue      INTERNET: 76625.1041@compuserve.com
  10.      Wooster, Ohio 44691              BIX: cblum
  11.      (216)262-3786
  12.  
  13.  
  14. IMPORTANT INFORMATION - DISTRIBUTION AND LICENSING
  15.  
  16.  
  17.      UMB_DRVR.SYS carries no warranties expressed or implied.  It is
  18. solely up to the user to determine its suitability for use on his/her
  19. machine.
  20.      This program is distributed as a self-extracting file containing
  21. the device driver and its associated documentation. Copying and
  22. redistribution is encouraged, but must be the original, unmodified
  23. file containing this documentation, and the transfer must not carry
  24. any fee or charge specific to this program: i.e. general BBS access
  25. or line charges are OK, but no 'download fee' or similar charge. This
  26. means that BBS operators may post this file for download, but may not
  27. charge a specific fee for it, and 'Distribution houses' may charge a
  28. disk-duplication fee, but not a specific charge for the program.
  29.      UMB_DRVR.SYS is made available on a 'try before you buy' basis.
  30. It is not crippled in any way, and has no 'advertising'. The latest
  31. version will be available on CompuServe in the IBM forum ( 'GO IBMSYS',
  32. lib 1 ).
  33.      Personal use license ( U.S. funds ) is $25 which should be mailed
  34. to the above address if the program is used after a reasonable trial
  35. period ( 30 days ). Please use the registration form at the end of this
  36. document. Users who register receive the latest version of the program,
  37. and may at any time send a self-addressed *and postpaid* diskette mailer
  38. and a diskette to receive further updated versions.
  39.      Corporate users must contact me for corporate rate or site license
  40. arrangements.
  41.  
  42.  
  43. TECHNICAL SUPPORT
  44.  
  45.  
  46.      Technical support, including pre-registration questions or install
  47. assistance, is available at your expense at the above telephone number.
  48. Please be aware that I am in the Eastern US time zone ( GMT-4 or GMT-5
  49. depending on season ) and try to call at a reasonable hour: i.e. 9 AM to
  50. Noon, 1 PM to 5PM, or 7 PM to 10 PM. Saturday is OK, but *PLEASE* avoid
  51. Sundays. I can also be contacted via Email on CompuServe, BIX and
  52. INTERNET ( IDs above ) - I monitor my mail almost every day. It is not
  53. necessarily a good idea to leave me messages on CompuServe in the forum
  54. sections unless your question or discussion is of general interest. The
  55. Postal Service may also be used ( address above ).
  56. UMB_DRVR.DOC       Version 5.22             02/20/92             Page 2
  57.  
  58.  
  59. INTRODUCTION
  60.  
  61.  
  62.      To start with, some definitions are in order. Hex addresses are
  63. given in full hex notation as opposed to Intel segment:offset form,
  64. i.e. A0000 in full hex is the same as A000:0 in seg:off form. The
  65. memory sizes are referred to in Kilobytes ( 1,024 decimal ), Megabytes
  66. ( 1,048,576 decimal ), and Gigabytes ( 1,073,741,824 decimal ).
  67.  
  68. BASE MEMORY - Ram available to DOS and programs from location 0 to
  69.   640K-1 ( 9FFFF hex ). All programs have access to this area.
  70.  
  71. UPPER MEMORY - The area between 640K ( A0000 ) and 1M-1 ( FFFFF ). This
  72.   is the area where roms on expansion cards reside ( usually ), where
  73.   the EMS base area ( the 'window' into EMS memory ) is ( usually ), and
  74.   where Upper Memory Blocks ( UMBs ) are created for loading device
  75.   drivers, programs, etc. 'high' with the DOS 5 'DEVICEHIGH' and
  76.   'LOADHIGH' commands. DOS does not create UMBs itself, but rather
  77.   relies on a program called a 'UMB provider' to supply them. DOS then
  78.   manages the upper memory area as an extention of base memory with
  79.   special characteristics when you use the 'DOS=xxxx,UMB' command.
  80.   Programs like UMB_DRVR, QEMM, 386^MAX, and others are UMB providers.
  81.  
  82. HIGH MEMORY AREA ( HMA ) - The HMA is memory from 1M ( 100000 ) to
  83.   1M+64K-16 ( 10FFF0 ), i.e. the first 64K-16 bytes of extended memory.
  84.   It can be accessed on 286 and up cpus in real mode because the address
  85.   calculation logic does not wrap to location 0 from FFFFF, allowing a
  86.   program to use the segment 'FFFF' to access memory up to 10FFF0. On
  87.   the earlier 8088 and 8086 processors, the wrap to location 0 was used
  88.   by some software. To maintain compatibility, system designers have
  89.   included a way to make the newer cpus act like the older ones. It is
  90.   a 'gate' that can allow the cpu's address line 20 ( A20 ) to be held
  91.   to 0 ( emulating the behavior of the older cpus ), or to be passed
  92.   through. With DOS 5, use of the HMA must be through a program which
  93.   controls access to it by opening this gate for times the HMA must be
  94.   accessed and closing it so that other programs cannot accidently get
  95.   at the HMA. The DOS 5 program which performs this function is the
  96.   device driver 'HIMEM.SYS'. Other programs such as QEMM, 386^MAX et.al.
  97.   also provide this function. The HMA is managed as a total unit, i.e.
  98.   only one program 'owns' it, and 'owns' it all. This is where most of
  99.   DOS is placed when you use HIMEM.SYS and the 'DOS=HIGH' command. As
  100.   stated before, when DOS is loaded 'high', no other program can use
  101.   this portion of memory. The definition of this area and its use is
  102.   standardized in the Extended Memory Specification ( XMS ) issued by
  103.   Microsoft / Lotus / Intel / AST Research, although there is question
  104.   as to where the credit for the 'discovery' of the area and its first
  105.   useage in real mode should go.
  106. UMB_DRVR.DOC       Version 5.22             02/20/92             Page 3
  107.  
  108.  
  109. INTRODUCTION continued
  110.  
  111.  
  112. EXTENDED MEMORY - Memory starting at 1M ( 100000 ) that is accessible by
  113.   the cpu in protected mode. On a 286, this range extends up to 16M-1
  114.   ( FFFFFF ), and on 386 and above cpus up to 16M-1 ( FFFFFF ) in 16-bit
  115.   mode and up to 4G-1 ( FFFFFFFF ) in 32-bit mode ( not used by vanilla
  116.   DOS, but possibly by some DOS extenders ). Under DOS, this memory is
  117.   accessed in several ways:
  118.  
  119.      1. BIOS INT 15H functions - This method is the oldest and least
  120.           standardized, but requires no special drivers. Programs
  121.           directly access the BIOS functions to utilize the memory, and
  122.           must take great pains to avoid 'stepping on' other users -
  123.           many different methods of 'marking' used memory exist, even
  124.           not marking at all.
  125.  
  126.      2. DOS EXTENDERS - These facilities are supplied by several vendors
  127.           including Phar-Lap and others. They are included within a
  128.           program and allow that program access to extended memory using
  129.           the extender's own techniques ( usually in protected mode ).
  130.  
  131.      3. XMS functions - This method is defined in the XMS standard that
  132.           was mentioned earlier. It offers a way for many different
  133.           programs to concurrently use extended memory easily without
  134.           worrying about the underlying memory management problems.
  135.           This method is the one used by all of the DOS 5 utilities that
  136.           use extended memory to provide their services. A device driver
  137.           is required to provide the XMS services. The DOS 5 driver is
  138.           'HIMEM.SYS'. QEMM and other programs also provide XMS access.
  139.           Most XMS servers including HIMEM.SYS will allow some portion
  140.           of extended memory to be left outside their control so that
  141.           programs using the BIOS INT 15H method can still work. Note
  142.           that DOS 5 *requires* XMS services to access the HMA to load
  143.           the major part of itself 'high'.
  144.  
  145. EXPANDED MEMORY - This is memory that conforms to the Expanded Memory
  146.   Specification put out by Lotus / Intel / Microsoft. It is sometimes
  147.   referred to as EMS, LIM 3.2, or LIM 4.0 memory. This type of memory
  148.   is not directly addressable by the cpu, but requires use of additional
  149.   facilities to be accessed. This memory is available via multiple 16K
  150.   'pages' in a ( usually ) 64K 'window' called the EMS base page area
  151.   within the 'Upper Memory Area', starting somewhere between C0000 and
  152.   E0000 on a 16K boundary. The cpu can access this 'window' in real mode
  153.   and uses the support facilities to map different 'pages' into the
  154.   'window'. Although the cpu can only access EMS memory totalling the
  155.   window size at any one time, it can 'move' the window to access all of
  156.   the expanded memory available.
  157. UMB_DRVR.DOC       Version 5.22             02/20/92             Page 4
  158.  
  159.  
  160.  
  161. INTRODUCTION continued
  162.  
  163.  
  164.  
  165.   Expanded ( EMS ) memory can be implemented in several ways:
  166.  
  167.     1. HARDWARE - Hardware support outside the cpu ( usually within the
  168.          support chip set on the motherboard, or on an expansion slot
  169.          card ) handles the mapping of the memory, controlled by a
  170.          software driver which merely flips hardware 'switches', and the
  171.          system runs under DOS in real mode with very little EMS
  172.          management cpu overhead.
  173.  
  174.     2. SIMULATED - This approach uses extended memory to simulate
  175.          expanded memory by moving 16K pages back and forth between
  176.          extended memory and the window ( usually *below* 640K, which
  177.          reduces the base memory area by the window size ). Although it
  178.          has the disadvantages of ( usually ) reducing base memory and
  179.          increasing the EMS management cpu overhead, it runs in real
  180.          mode on any 286 or higher processor without requiring anything
  181.          more than a software driver. This is the only software option
  182.          available for many 286 systems. An example of this type of
  183.          driver is UMB_EMS4, distributed with this package ( which,
  184.          by the way, does *NOT* reduce your DOS base memory, because it
  185.          uses a 64K window in the upper memory area! ).
  186.  
  187.     3. EMULATED - This technique is a sort of cross between 1 and 2. It
  188.          uses the paging hardware built into 386 and newer processors
  189.          in conjunction with virtual-86 mode to do the mapping tasks
  190.          required to provide EMS memory. It is similar to 1 in that the
  191.          mapping is really done by the hardware, and to 2 in that it
  192.          also involves non-trivial software to provide the virtual-86
  193.          mode environment necessary for it to work. Its advantages are
  194.          that it works on any 386 or newer cpu without any other special
  195.          hardware and does not reduce the base memory like 2, but it
  196.          also has the drawback of restrictions, additional overhead and
  197.          complexity introduced by virtual-86 mode. There are several
  198.          packages that support this type of EMS, including EMM386.EXE
  199.          supplied with DOS 5, and programs like QEMM, 386^MAX, NETROOM,
  200.          and Memory Commander. Additionally, these EMS emulators can
  201.          provide the Upper Memory Area using the same techniques, and
  202.          generally are a good 'bang for the buck' in providing enhanced
  203.          system functionality for a relatively modest impact on system
  204.          processor overhead if you have the proper cpu.
  205. UMB_DRVR.DOC       Version 5.22             02/20/92             Page 5
  206.  
  207.  
  208. INTRODUCTION continued
  209.  
  210.  
  211.      UMB_DRVR.SYS is a DOS 5.0 device driver that will use the 'shadow
  212. ram' capability of the memory controller portion of many chip sets to:
  213.      A) force all roms not specifically excluded to be shadowed, and
  214.      B) expand DOS base memory beyond 640KB if possible, and
  215.      C) provide UMBs ( Upper Memory Blocks ) to DOS for loading
  216.         programs and device drivers into upper memory
  217. while *NOT* using any memory below 640K and remaining in *REAL* mode.
  218.      One advantage of this driver is that many if not all other device
  219. drivers and TSR programs may be loaded 'high' including HIMEM.SYS ( even
  220. though the DOS documentation says not! ).
  221.      A second advantage of using UMB_DRVR is that some device drivers
  222. that cannot be loaded high when a software EMS emulator is providing the
  223. Upper Memory Area because of their use of DMA I/O ( this includes some
  224. CD-ROM drivers, for example ) will work with UMB_DRVR.SYS. This has to
  225. do with the characteristics of virtual-86 mode, 386+ memory management
  226. facilities, and DMA hardware interactions. See MISCELLANEOUS NOTES - DMA
  227. ACCESS TO UPPER MEMORY for more information and possible restrictions.
  228.      In addition, remaining in real mode allows programs that must be
  229. able to use protected or virtual-86 mode themselves, such as Borland's
  230. Turbo Debugger ( TD386.EXE / TDH386.SYS ), to operate as intended ( and
  231. yes, TDH386.SYS can be loaded high with no problems ).
  232.      With respect to performance of UMB_DRVR.SYS versus the software EMS
  233. emulator EMM386.EXE supplied with DOS 5, here are some benchmark results
  234. supplied by a ( happy ) user:
  235.  
  236. " System: 386SX 20Mhz, VLSI TOPCAT chip set, 4MB ram, no math processor.
  237.   DOS version: MS/DOS 5.0    UMB_DRVR.SYS version: 5.09
  238.   Benchmark: CHECKIT 3.0 main system benchmark.
  239.  
  240.   CONFIG.SYS                           Dhrystones Whetstones
  241.   ------------------------------------ ---------- ----------
  242.   None                                    3767       76.7K
  243.  
  244.  
  245.   DEVICE=C:\UMB_DRVR.SYS  /C=13           4042       77.1K
  246.   DEVICEHIGH=C:\DOS\HIMEM.SYS
  247.   DEVICEHIGH=C:\DOS\ANSI.SYS
  248.  
  249.  
  250.   DEVICE=C:\DOS\HIMEM.SYS                 3683       45.7K
  251.   DEVICE=C:\DOS\EMM386.SYS NOEMS
  252.   DEVICEHIGH=C:\DOS\ANSI.SYS
  253.  
  254.  
  255.   As you can see, there is a significant difference when using UMB_DRVR,
  256.   not to mention the extra memory saved below 640k.  The benchmarks ran
  257.   faster with UMB_DRVR than they did with no CONFIG.SYS at all. "
  258. UMB_DRVR.DOC       Version 5.22             02/20/92             Page 6
  259.  
  260.  
  261.  
  262. INTRODUCTION continued
  263.  
  264.  
  265.  
  266.      The driver must be installed *BEFORE* HIMEM.SYS is installed. It is
  267. an XMS 2.0 server providing UMBs to DOS via that standard. The chip
  268. set parameter is processed and the proper routine called to remap the
  269. unused shadow ram to DOS-useable memory. Available memory starting at
  270. A0000 is used to expand DOS base memory beyond 640K, and other available
  271. memory ( i.e. above the video memory ) is used for UMBs ( the areas
  272. DOS uses for DEVICEHIGH or LOADHIGH commands ).
  273.      The driver by default will not use any areas used for video memory.
  274. It also forces all roms including the system BIOS ( F0000-FFFFF ) to be
  275. shadowed unless forced to be excluded ( refer to MISCELLANEOUS NOTES for
  276. considerations concerning disk controllers and network cards ). If the
  277. BIOS has a 'boot page' at F0000-F7FFF that the driver can recognize
  278. ( containing system/CMOS setup code - AMI is one brand that has this ),
  279. that area will be mapped in as available upper memory since it is not
  280. needed after boot time.
  281.      The driver should be loaded as the first driver if possible. This
  282. allows following drivers and resident programs to be loaded high - even
  283. HIMEM.SYS and EMM386.SYS ( DOS documentation says they can't, but it
  284. works; see MISCELLANEOUS NOTES - WINDOWS and EMS DRIVERS, however ). It
  285. will initialize, supply UMBs, and terminate leaving a small stub above
  286. 640K. To ensure proper chip set function, all warm boots ( CTL+ALT+DEL )
  287. will be forced to be cold boots after UMB_DRVR is installed.
  288.      Appropriate status and error messages are issued during processing
  289. and a map of the driver's action is displayed.
  290.      One of my systems is a 386SX with the Chips and Technologies NEATsx
  291. chip set and an AMI ( American Megatrends ) BIOS dated 04/09/90. It has
  292. 4MB of ram and a Hercules Monochrome Graphics card. I load DOS into the
  293. HMA using HIMEM.SYS, supply simulated EMS from the XMS memory pool using
  294. UMB_EMS4, and load Borland's Turbo Debugger device driver TDH386.SYS for
  295. 386 virtual debugging ( TD386.EXE ). Using UMB_DRVR defaults and loading
  296. all drivers ( except SETVER ) high gives me 704K base memory for DOS, a
  297. maximum executable program size of almost 689K and 224K in one UMB
  298. located at C0000-F7FFF with over 143K still free in that upper memory
  299. block for any other TSRs or drivers I may want to load.  The following
  300. information is extracted from that system ( Note: 1K = 1024 decimal ).
  301.  
  302.  
  303.      UMB_DRVR.SYS initializes showing:
  304.  
  305.  
  306. Chip-controlled ram at: AAAABBBBCCCCDDDDEEEEFFFF ([D]OS base memory,
  307.                         048C048C048C048C048C048C  [e]ms base page area,
  308. has been configured as: DDDDvvvvUUUUUUUUUUUUUUss  [s]hadowed rom,
  309. DOS base memory expansion = 64K                   [U]pper memory area,
  310. Upper memory block ( UMB ) area = 224K            [v]ideo, [-]excluded)
  311. UMB_DRVR.DOC       Version 5.22             02/20/92             Page 7
  312.  
  313.  
  314.  
  315. INTRODUCTION continued
  316.  
  317.  
  318.  
  319.      The command 'MEM /C' displays the following:
  320.  
  321.  
  322. Conventional Memory :
  323.  
  324.   Name                Size in Decimal       Size in Hex
  325. -------------      ---------------------   -------------
  326.   MSDOS              12304      ( 12.0K)       3010
  327.   SETVER               400      (  0.4K)        190
  328.   COMMAND             2624      (  2.6K)        A40
  329.   FREE                  64      (  0.1K)         40
  330.   FREE              705328      (688.8K)      AC330
  331.  
  332. Total  FREE :       705392      (688.9K)
  333.  
  334. Upper Memory :
  335.  
  336.   Name                Size in Decimal       Size in Hex
  337. -------------      ---------------------   -------------
  338.   SYSTEM             65712      ( 64.2K)      100B0
  339.   HIMEM               1072      (  1.0K)        430
  340.   UMB_EMS4           73136      ( 71.4K)      11DB0
  341.   TDH386              7920      (  7.7K)       1EF0
  342.   FREE              146976      (143.5K)      23E20
  343.  
  344. Total  FREE :       146976      (143.5K)
  345.  
  346. Total bytes available to programs (Conventional+Upper) : 852368 (832.4K)
  347. Largest executable program size :                        705184 (688.7K)
  348. Largest available upper memory block :                   146976 (143.5K)
  349.  
  350.    3080192 bytes total EMS memory
  351.    3080192 bytes free EMS memory
  352.  
  353.    3145728 bytes total contiguous extended memory
  354.          0 bytes available contiguous extended memory
  355.    3080192 bytes available XMS memory
  356.            MS-DOS resident in High Memory Area
  357.  
  358.  
  359.      *NOTE* - If the video card were a CGA, the DOS base ram expansion
  360. would be 96K(!) with executable program size a whopping 721K(!)...  a
  361. pretty good cure for 'ram cram'! These same results can ( and have been
  362. repeatedly ) achieved on *286* machines!
  363. UMB_DRVR.DOC       Version 5.22             02/20/92             Page 8
  364.  
  365.  
  366. MISCELLANEOUS NOTES
  367.  
  368.  
  369. BOOT PAGE
  370.  
  371.      If UMB_DRVR.SYS uses the 'boot page' area ( see INTRODUCTION for
  372. definition ) by default and your system crashes, you need to use the /M=
  373. parameter to force it to be part of the BIOS ( use '##' or '--' ). If no
  374. 'boot page' is recognized, you may still try the /M= parameter ( with
  375. '++' for F0000-F7FFF ) if you are brave enough. Heed the warning about
  376. having a bootable diskette, however - you may need it.
  377.  
  378.  
  379. EMS DRIVERS ( EMM386, QEMM, 386^MAX, NETROOM, MEMORY COMMANDER, ETC )
  380.  
  381.      If you run EMS, it is most efficient in terms of contiguous memory
  382. to have your EMS base address immediately following your video ram and
  383. any adjacent rom ( e.g. C0000-CFFFF for CGA or monochrome, C8000-D7FFF
  384. for VGA ) or at the top of the useable area ( e.g. E8000-F7FFF with a
  385. 'boot page', E0000-EFFFF without ).
  386.      It is also more efficient in terms of cpu usage overhead to use the
  387. hardware EMS driver for your chip set or your EMS memory card instead of
  388. a software emulation; see INTRODUCTION ( virtual-86 mode, benchmark ).
  389.      If you use an EMS driver ( hardware or software emulation ), you
  390. should use the /M= parameter to force UMB_DRVR to exclude the EMS base
  391. area. Make sure you *DO NOT* have your driver try to map in the upper
  392. memory ( 640K - 1M ) area ( other than the EMS base area ) - UMB_DRVR
  393. has done that already ( refer to your driver's documentation ). You
  394. should be able to use DEVICEHIGH/LOADHIGH to put your driver into upper
  395. memory in most cases.
  396.      If you do not have an EMS driver, try UMB_EMS4 ( please refer to
  397. UMB_EMS4.DOC ). There have been some problems reported running EMM386
  398. with UMB_DRVR - I recommend against it. UMB_EMS4 should provide the
  399. services you need.
  400.  
  401.  
  402. ROMS THAT CANNOT BE SHADOWED ( DISK CONTROLLERS, NETWORK CARDS )
  403.  
  404.      Some roms cannot be shadowed by normal means because they have some
  405. ram or a memory-mapped I/O port they must use included in their address
  406. space ( e.g. some RLL, ESDI and SCSI disk controllers, and also some
  407. network cards ) and shadowing is done using protected ram. These roms
  408. will sometimes work when shadowed by this driver if they are within a
  409. protection block also containing UMBs. Try letting UMB_DRVR shadow the
  410. rom and see if it works. If your system hangs up or you have problems
  411. with disk or network access with the rom shadowed, you must use the /M=
  412. parameter to exclude it from UMB_DRVR.SYS control. Refer to CHIP-SET-
  413. SPECIFIC NOTES for any special considerations.
  414. UMB_DRVR.DOC       Version 5.22             02/20/92             Page 9
  415.  
  416.  
  417. MISCELLANEOUS NOTES continued
  418.  
  419.  
  420. DMA ACCESS TO UPPER MEMORY
  421.  
  422.      DMA ( Direct Memory Access ) is a method of data transfer between
  423. main memory ( ram ) and I/O devices without requiring cpu intervention.
  424. Standard AT-compatible floppy disk controllers use it, as do some other
  425. devices, such as CD-ROMs and data acquisition hardware. It is supported
  426. through the Intel 8237A DMA controller chip, or by compatible integrated
  427. devices like the 82C206, or even by compatible components within the
  428. motherboard chip set. These devices control the data / address busses in
  429. the system to do the transfer while the cpu does other work. They do not
  430. have access to the internal 386+ cpu memory management facilities during
  431. their operation, and so are unaware of remapping of memory done there.
  432. Most of the time this is not a concern, as software that handles the
  433. remapping also handles DMA setup by intercepting accesses to the DMA
  434. controller registers and trying to keep things straight for DMA I/O.
  435. This can become a concern if the DMA transfer spans a page boundary that
  436. in virtual memory is to an adjacent page, but in real memory is not.
  437. Most of the 386-type mappers either automatically or through parameters
  438. try to avoid this situation by causing the area to be mapped ( as much
  439. as possible ) into contiguous memory.
  440.      UMB_DRVR, on the other hand, uses hardware external to the cpu that
  441. maps in the upper memory area contiguously such that DMA access to the
  442. upper memory area is no different than to the base 640K. The DMA mapping
  443. requirememts that the device drivers are aware of for a 'standard AT'
  444. system do not change when UMB_DRVR provides the upper memory area. Note
  445. that some drivers still cannot load high because they are 'confused' by
  446. being at a higher address in memory than the program that is using them,
  447. but this is becoming much less common as drivers are rewritten to be
  448. able to take advantage of the DOS 5 high memory capabilities.
  449.      One consideration remains, however: a *VERY* few chip sets that are
  450. supported by UMB_DRVR are designed such that the ram that is mapped into
  451. the upper memory area can only be accessed by the cpu. UMB_DRVR performs
  452. a test for proper DMA function at initialization and issues a warning
  453. message if DMA is not possible to the upper memory area. If ( and *ONLY*
  454. if ) this is the case, any DMA accesses attempted to an area above 640K
  455. and below 1M will not work, and the following restrictions will apply:
  456.      (1) If you boot from a floppy disk or try to load any driver or
  457.          TSR high reading it from a floppy, do not load UMB_DRVR.SYS -
  458.          if you do, your system will probably hang up immediately upon
  459.          trying to load anything into upper memory.
  460.      (2) Almost no hard disk controllers use DMA, but if you have one
  461.          that does, you will probably have problems with loading any
  462.          driver or TSR into upper memory, and you may not be able to
  463.          use UMB_DRVR at all.
  464.      (3) Device drivers that use DMA for access to buffers within the
  465.          driver itself, or allocated immediately after the driver when
  466.          it initializes, cannot be loaded high on your system.
  467.      (4) No DOS base memory expansion from unused video memory should
  468.          be used ( all DOS base ram should be capable of DMA access ).
  469.      Note that these restrictions apply *ONLY* if DMA access to upper
  470. memory is *NOT* available, i.e. if UMB_DRVR issues the warning message.
  471. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 10
  472.  
  473.  
  474. MISCELLANEOUS NOTES continued
  475.  
  476.  
  477. MICROSOFT WINDOWS
  478.  
  479.      Windows 3.0 and 3.0A have been tested as follows:
  480.  
  481. 386 Enhanced mode:
  482.      Windows will run in 386 enhanced mode with UMB_DRVR if the line
  483.           EMMExclude=A000-FFFF
  484. is added to the SYSTEM.INI file, [386Enh] section. Note that a practical
  485. minimum of 4MB of ram on your system is suggested to run in this mode.
  486. Also note that SETVER.EXE must be loaded LOW, and ANSI.SYS ( if used )
  487. must be loaded LOW. There may be other drivers like this... experiment.
  488. Refer to UMB_EMS4.DOC for considerations regarding UMB_EMS4 and Windows.
  489.  
  490. Standard mode:
  491.      Windows in standard mode works with UMB_DRVR and HIMEM.SYS, with or
  492. without an EMS driver ( hardware or software ) loaded high or low. Note
  493. you must have a minimum of something like 512K or more extended memory
  494. to run in standard mode - i.e. do not have a software EMS driver remap
  495. ALL of your extended memory to expanded.
  496.  
  497.  
  498. PROGRAM ACCESS TO UPPER MEMORY WITH DOS 5 MANAGING UMBS
  499.  
  500. 1. Record current status of memory system so you can restore it.
  501. int 21H/ax=5800h - returns al=strategy ( see below )
  502. int 21h/ax=5802h - returns al=UMB link state ( see below )
  503.  
  504. 2. Set up for memory allocation / deallocation.
  505. int 21h/ax=5801h/bh=0/bl=strategy    int 21h/ax=5803h/bh=0/bl=UMB status
  506.   00h - first fit, low memory          00h = remove UMBs from mem chain
  507.   01h - best   "    "    "             01h = add UMBs to mem chain
  508.   02h - last   "    "    "           ( UMBs must be chained for access )
  509.   40h - first fit, high memory
  510.   41h - best   "    "     "
  511.   42h - last   "    "     "
  512.   80h - first fit, try high then low memory
  513.   81h - best   "    "   "    "    "    "
  514.   82h - last   "    "   "    "    "    "
  515.  
  516. 3. Do normal int 21h/ah=48h, int 21h/ah=49h, int 21h/ah=4Ah as desired.
  517.  
  518. 4. Restore values saved in step 1 above.
  519.  
  520.      The system defaults to first-fit-low with UMBs not chained. If you
  521. chain the UMBs, strategies 00/01/02 affect the entire chain. For example
  522. with the UMBs chained and strategy 00, you will get memory from the UMB
  523. area if the request cannot be satisfied from low memory.
  524. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 11
  525.  
  526.  
  527. DETERMINING YOUR CHIP SET
  528.  
  529.      If your system documentation or CMOS setup screen does not tell you
  530. what chip set you have, the best way to find out is to open the cover on
  531. your system and look at the motherboard. *MAKE SURE THE SYSTEM IS OFF
  532. AND UNPLUGGED* when you do this. The chip you will be looking for may
  533. not be one of the larger in size, but it will have many ( usually 80+,
  534. sometimes up to 200 or more ) pins. The number that identifies the key
  535. chip in the set is listed in CHIP-SET-SPECIFIC NOTES for each chip set
  536. supported. If you find a matching number on one of the chips on your
  537. motherboard, use the /C= value shown for that set. If you don't see a
  538. match, refer to the sections BAD NEWS, MAYBE?, and COMING ATTRACTIONS.
  539.      Note that some chips only contain peripheral support and *DO NOT*
  540. indicate what chip set you have. These include, but are not limited to:
  541.           82C206 ( many brands )
  542.           82C601, 82C710, 82C711 ( Chips and Technologies )
  543.           VL82C100, VL82C106, VL82C107, VL86C050, VL16C45x, VL16C55x
  544.                ( VLSI Technology )
  545.           82C452, 85C206 ( Silicon Integrated Systems )
  546.           TACT82206 ( Texas Instruments )
  547. Again, these chip numbers *DO NOT* indicate what chip set you have. If
  548. you find one of these on your motherboard, you should keep looking!
  549.  
  550.  
  551. CHIP-SET-SPECIFIC NOTES
  552.  
  553.  
  554. ****************************************
  555. * User-Specified Available Memory mode *
  556. ****************************************
  557. /C=00 - Chip ID(s): None ( 286, 386SX, 386DX, 486 )
  558.  
  559.      This selection causes UMB_DRVR to map the areas specified in the
  560. /M= parameter, using the '+' ( plus ) character, as upper memory. Please
  561. note the following points when using this mode:
  562.      (1) This mode *CANNOT BE USED* unless you have a way to actually
  563.            map read-write ram into the area between 640K ( A0000 ) and
  564.            1M ( 100000 ) through your CMOS setup or some other program
  565.            provided by your system or chip-set manufacturer, or a memory
  566.            expansion card that maps ram into that area on the AT bus.
  567.          NOTE: The system BIOS brand 'MRBIOS' from Microid Research will
  568.            include the capability to set up your memory this way if your
  569.            chip set supports it.
  570.      (2) No verification or manipulation of any chip set is done.
  571.      (3) Rom shadowing is totally controlled by your system BIOS and
  572.            CMOS setup parameters.
  573.      (4) No checking is performed other than the memory read-write and
  574.            DMA tests.
  575.      (5) Warm boots are *NOT* forced to be cold boots.
  576.      (6) It is *YOUR RESPONSIBILITY* to properly determine and specify
  577.            which areas can be used.
  578. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 12
  579.  
  580.  
  581. CHIP-SET-SPECIFIC NOTES continued
  582.  
  583.  
  584. *******************************************************
  585. * Chips & Technologies CS8221 NEAT, CS8281 NEATsx,    *
  586. *                   CS8223 LeAPset, CS8283 LeAPset-sx *
  587. * Texas Instruments TACT82S411 Single Chip AT         *
  588. * United Microelectronics (UMC) UM82C210 286/386SX AT *
  589. *******************************************************
  590. /C=01 - Chip ID(s): ( C & T ) 82C212, 82C241 ( 286 )
  591.                               82C812, 82C841 ( 386SX );
  592.                     ( TI ) TACT82S411 ( 286, 386SX );
  593.                     ( UMC ) UM82C212 ( 286, 386SX )
  594.  
  595.      These chip sets allow the 384k of motherboard ram at A0000-FFFFF to
  596. relocate to extended memory at 100000-15FFFF on systems with only 1mb of
  597. ram. If this remapping is enabled when UMB_DRVR.SYS enables this area,
  598. the remapping is removed and the size of your extended memory is reduced
  599. by 384k, i.e. it disappears. Note that this applies only to systems with
  600. *EXACTLY* 1MB of memory.
  601.      These chip sets map in 16k segments, but write protection for the
  602. area C0000-FFFFF is in 64k segments. To allow maximum memory utilization
  603. the driver marks any segment containing UMBs as read/write. If the 64k
  604. segment also contains a rom shadow, it is not protected.
  605.      Although it should not be necessary, if you wish to have a rom be
  606. shadowed and protected, exclude any non-rom areas within the 64k segment
  607. ( e.g. for a VGA rom at C0000-C7FFF, exclude C8000-CFFFF ).
  608.      If you must force a rom to be unshadowed, you need only exclude the
  609. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  610. C8000-CBFFF ).
  611.      UMB_DRVR.SYS will recognize the EMS setup for these chip sets and
  612. will exclude the EMS base segment if the EMS hardware is enabled when
  613. UMB_DRVR initializes. Use of the /M= parm is not required in this case.
  614.  
  615.  
  616. ****************************
  617. * VLSI Technology VL82C200 *
  618. ****************************
  619. /C=02 - Chip ID(s): VL82C201,VL82C202,VL82C203,VL82C204 ( 286, 386SX )
  620.                     ( all 4 chips required )
  621.  
  622.      This chip set uses a jumper or switch to enable shadow ram ability.
  623. This does not actually cause shadowing, but must be in proper position
  624. for UMB_DRVR.SYS to work. Check your system documentation.
  625.      This chip set maps and protects in 64k segments. To allow maximum
  626. memory utilization, 64k segments containing UMBs are set to read/write.
  627. If the 64k segment also contains a rom shadow, it is not protected.
  628.      Although it should not be necessary, if you wish to have a rom be
  629. shadowed and protected, exclude any non-rom areas within the 64k segment
  630. ( e.g. for a VGA rom at C0000-C7FFF, exclude C8000-CFFFF ).
  631.      If you must force a rom to be unshadowed, exclude the entire 64k
  632. segment on a 64k boundary ( e.g. for a disk rom at C8000-CBFFF, exclude
  633. C0000-CFFFF ).
  634. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 13
  635.  
  636.  
  637.  
  638. CHIP-SET-SPECIFIC NOTES continued
  639.  
  640.  
  641.  
  642. *******************
  643. * FOREX FRX36C300 *
  644. *******************
  645. /C=03 - Chip ID(s): FRX36C300 ( 386DX )
  646.  
  647.      This chip set maps in 32k segments from C0000 to EFFFF, and one 64k
  648. segment for the system BIOS ( F0000-FFFFF ).  Ram at A0000-BFFFF is
  649. always remapped to the highest area and cannot be used by the driver.
  650. Protection is set globally, meaning that all used ram ( shadow or UMBs )
  651. is marked read/write.
  652.      The chip set also remaps D0000-EFFFF to the highest area if there
  653. is nothing shadowed in that area. When UMB_DRVR.SYS enables this area,
  654. the remapping is removed and the size of your extended memory is reduced
  655. by 128k.
  656.      If you must force a rom to be unshadowed, exclude the entire 32k
  657. segment on a 32k boundary ( e.g. for a disk rom at C8000-CBFFF, exclude
  658. C8000-CFFFF ).
  659.  
  660.  
  661.  
  662. *******************************************************************
  663. * Chips & Technologies CS8230 386/AT, CS8231 Turbo Cache 386/AT,  *
  664. *                      CS8233 PEAKset/386, CS82310 PEAKset DM/386 *
  665. *******************************************************************
  666. /C=04 - Chip ID(s): 82C302, 82C307, 82C311, 82C351 ( 386DX )
  667.  
  668.      These chip sets maps in 16k segments, but write protection for the
  669. area C0000-FFFFF is in 64k segments. To allow maximum memory utilization
  670. the driver marks any segment containing UMBs as read/write. If the 64k
  671. segment also contains a rom shadow, it is not protected.
  672.      Although it should not be necessary, if you wish to have a rom be
  673. shadowed and protected, exclude any non-rom areas within the 64k segment
  674. ( e.g. for a VGA rom at C0000-C7FFF, exclude C8000-CFFFF ).
  675.      If you must force a rom to be unshadowed, you need only exclude the
  676. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  677. C8000-CBFFF ).
  678. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 14
  679.  
  680.  
  681. CHIP-SET-SPECIFIC NOTES continued
  682.  
  683.  
  684. ******************************************************************
  685. * Chips & Technologies 82C235 SCAT, 82C836 SCATsx, CB8291 ELEAT, *
  686. *                      CB8295 ELEATsx, CS8285 PEAKset-sx,        *
  687. *                      CS8227 CHIPSlite, CS8288 CHIPSlite-sx     *
  688. ******************************************************************
  689. /C=05 - Chip ID(s): 82C235 ( 286 ), 82C836 ( 386SX )
  690.  
  691.      These chip sets allow the 384k of motherboard ram at A0000-FFFFF to
  692. relocate to extended memory at 100000-15FFFF on systems with only 1mb of
  693. ram. If this remapping is enabled when UMB_DRVR.SYS enables this area,
  694. the remapping is removed and the size of your extended memory is reduced
  695. by 384k, i.e. it disappears. Note that this applies only to systems with
  696. *EXACTLY* 1MB of memory.
  697.      These chip sets map in 16k segments, but write protection for the
  698. area C0000-FFFFF is in 32k segments. To allow maximum memory utilization
  699. the driver marks any segment containing UMBs as read/write. If the 32k
  700. segment also contains a rom shadow, it is not protected.
  701.      Although it should not be necessary, if you wish to have a rom be
  702. shadowed and protected, exclude any non-rom areas within the 32k segment
  703. ( e.g. for a rom at C8000-CBFFF, exclude CC000-CFFFF ).
  704.      If you must force a rom to be unshadowed, you need only exclude the
  705. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  706. C8000-CBFFF ).
  707.  
  708.  
  709. ************************
  710. * ETEQ Micro COUGAR II *
  711. ************************
  712. /C=06 - Chip ID(s): 82C491 ( 386DX, 486 )
  713.  
  714.      This chip set maps in 16k segments from C0000 to EFFFF, and one 64k
  715. segment for the system BIOS ( F0000-FFFFF ). Memory protection is done
  716. in 64k segments from C0000 to EFFFF. The hardware does not allow read /
  717. write access to the area F0000-FFFFF - i.e. the rom can be shadowed and
  718. protected, but the driver cannot use the boot page. The driver also
  719. cannot use the ram at A0000-BFFFF.
  720.      The chip set can remap A0000-BFFFF and D0000-EFFFF to the highest
  721. area if no shadowing is done in that area. If this remapping is enabled
  722. and UMB_DRVR.SYS enables the area D0000-EFFFF, the remapping is removed
  723. and the size of your extended memory is reduced by 256k.
  724.      Although it should not be necessary, if you wish to have a rom be
  725. shadowed and protected, exclude non-rom areas within the 64k segment:
  726.  e.g. for a rom at C8000-CBFFF, exclude C0000-C7FFF and CC000-CFFFF. If
  727. you have a VGA rom at C0000-C7FFF, you only need exclude CC000-CFFFF.
  728.      If you must force a rom to be unshadowed, you need only exclude the
  729. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  730. C8000-CBFFF ).
  731. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 15
  732.  
  733.  
  734. CHIP-SET-SPECIFIC NOTES continued
  735.  
  736.  
  737. ***************************
  738. * OPTi Sx/AT, Sx/AT Cache *
  739. ***************************
  740. /C=07 - Chip ID(s): 82C281, 82C282, 82C283 ( 386SX )
  741.  
  742.      These chip sets maps in 16k segments from C0000 to EFFFF, and one
  743. 64k segment for the system BIOS ( F0000-FFFFF ). Memory protection is
  744. in 64k segments from C0000 to EFFFF. The hardware does not allow read /
  745. write access to the area F0000-FFFFF - i.e. the rom can be shadowed and
  746. protected, but the driver cannot use the boot page. The driver also
  747. cannot use the ram at A0000-BFFFF.
  748.      These chip sets can remap A0000-BFFFF and D0000-EFFFF to the high
  749. end of extended memory if no shadowing is done in either area. If this
  750. remapping is enabled and UMB_DRVR.SYS enables the area D0000-EFFFF, the
  751. remapping is removed and the size of your extended memory is reduced by
  752. 256k.
  753.      Although it should not be necessary, if you wish to have a rom be
  754. shadowed and protected, exclude non-rom areas within the 64k segment:
  755.  e.g. for a rom at C8000-CBFFF, exclude C0000-C7FFF and CC000-CFFFF. If
  756. you have a VGA rom at C0000-C7FFF, you only need exclude CC000-CFFFF.
  757.      If you must force a rom to be unshadowed, you need only exclude the
  758. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  759. C8000-CBFFF ).
  760.  
  761.  
  762. ********************
  763. * OPTi DX/BB PC/AT *
  764. ********************
  765. /C=08 - Chip ID(s): 82C496 ( 386DX, 486 )
  766.  
  767.      This chip set maps in 16k segments from C0000 to EFFFF, and one 64k
  768. segment for the system BIOS ( F0000-FFFFF ). Memory protection is done
  769. in 64k segments from C0000 to EFFFF. The hardware does not allow read /
  770. write access to the area F0000-FFFFF - i.e. the rom can be shadowed and
  771. protected, but the driver cannot use the boot page. The driver also
  772. cannot use the ram at A0000-BFFFF.
  773.      The chip set can remap A0000-BFFFF and D0000-EFFFF to the highest
  774. area if no shadowing is done in that area. If this remapping is enabled
  775. and UMB_DRVR.SYS enables the area D0000-EFFFF, the remapping is removed
  776. and the size of your extended memory is reduced by 256k.
  777.      Although it should not be necessary, if you wish to have a rom be
  778. shadowed and protected, exclude non-rom areas within the 64k segment:
  779.  e.g. for a rom at C8000-CBFFF, exclude C0000-C7FFF and CC000-CFFFF. If
  780. you have a VGA rom at C0000-C7FFF, you only need exclude CC000-CFFFF.
  781.      If you must force a rom to be unshadowed, you need only exclude the
  782. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  783. C8000-CBFFF ).
  784. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 16
  785.  
  786.  
  787. CHIP-SET-SPECIFIC NOTES continued
  788.  
  789.  
  790. ***********************************
  791. * OPTi 386WB PC/AT, 486SXWB PC/AT *
  792. ***********************************
  793. /C=09 - Chip ID(s): 82C391 ( 386DX ), 82C493 ( 486 )
  794.  
  795.      These chip sets maps in 16k segments from C0000 to EFFFF, and one
  796. 64k segment for the system BIOS ( F0000-FFFFF ). Memory protection is
  797. done in 64k segments from C0000 to EFFFF. The hardware does not allow
  798. read / write access to ram at F0000-FFFFF - i.e. the rom can be shadowed
  799. and protected, but the driver cannot use the boot page. The driver also
  800. cannot use the ram at A0000-BFFFF.
  801.      Although it should not be necessary, if you wish to have a rom be
  802. shadowed and protected, exclude non-rom areas within the 64k segment:
  803.  e.g. for a rom at C8000-CBFFF, exclude C0000-C7FFF and CC000-CFFFF. If
  804. you have a VGA rom at C0000-C7FFF, you only need exclude CC000-CFFFF.
  805.      If you must force a rom to be unshadowed, you need only exclude the
  806. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  807. C8000-CBFFF ).
  808.  
  809.  
  810. ***********************
  811. * OPTi 386/486WB EISA *
  812. ***********************
  813. /C=10 - Chip ID(s): 82C682 ( 386DX, 486 )
  814.  
  815.      This chip set maps and protects in 16k segments at C0000-DFFFF, one
  816. 64k segment at E0000 and one 64k segment for the system BIOS at F0000.
  817. The the driver cannot use the ram at A0000-BFFFF.
  818.      If one of the 64k segments contains both shadowed rom and UMB area,
  819. it is marked read/write. All roms in the C0000-DFFFF area are protected.
  820.      If you must force a rom to be unshadowed, you need only exclude the
  821. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  822. C8000-CBFFF ) unless it is in the E0000 block or you wish to force the
  823. BIOS ( F0000-FFFFF) to be unshadowed. Then you must exclude the entire
  824. 64k block ( E0000-EFFFF and/or F0000-FFFFF ).
  825.  
  826.  
  827. ****************************************
  828. * Elite Microelectronics Eagle, Falcon *
  829. ****************************************
  830. /C=11 - Chip ID(s): e88C311 ( 386DX ), e88C411 ( 486 )
  831.  
  832.      These chip sets map and protect in 16k segments for the entire area
  833. C0000-FFFFF. All shadowed roms are write-protected. UMB_DRVR cannot use
  834. the ram at A0000-BFFFF.
  835.      These sets always remap A0000-BFFFF to the highest memory area, and
  836. can selectively remap C0000-FFFFF in 64k blocks if no shadowing is done
  837. within the 64k block. If this remapping is active and UMB_DRVR enables
  838. shadow memory within one of the remapped 64k blocks, the remapping is
  839. removed and the size of your extended memory is reduced.
  840.      If you must force a rom to be unshadowed, you need only exclude the
  841. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  842. C8000-CBFFF ).
  843. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 17
  844.  
  845.  
  846. CHIP-SET-SPECIFIC NOTES continued
  847.  
  848.  
  849. *************************
  850. * VLSI Technology SCAMP *
  851. *************************
  852. /C=12 - Chip ID(s): VL82C310, VL82C311 ( 286, 386SX ), VL82C311L ( 286 )
  853.  
  854.      These chip sets map and protect in 32k segments for A0000-BFFFF,
  855. 16k segments for C0000-DFFFF, and 32k segments for E0000-FFFFF. If a
  856. rom shadow shares a 32k segment from E0000 to FFFFF with a UMB area, it
  857. is marked read/write. Any shadowed rom from C0000-DFFFF is protected, as
  858. is any 32k segment from E0000 to FFFFF that is all shadowed rom.
  859.      These sets can remap A0000-FFFFF to the highest memory area if no
  860. shadowing is done and system memory is 1MB, 2MB, 3MB or 4MB. If remap
  861. is active and UMB_DRVR enables any shadow memory, the remapping is
  862. removed and the size of your extended memory is reduced. Note that this
  863. applies only to systems with *EXACTLY* 1MB, 2MB, 3MB or 4MB installed.
  864.      If you must force a rom to be unshadowed, you need only exclude the
  865. 16k segment(s) it occupies if it is between C0000 and DFFFF ( e.g. for a
  866. disk rom at C8000-CBFFF, exclude C8000-CBFFF ). If it is between E0000
  867. and FFFFF, exclude all areas in the 32k segment ( e.g. for a disk rom at
  868. E0000-E3FFF, exclude E0000-E7FFF ).
  869.  
  870.  
  871. *********************************************
  872. * VLSI Technology VL82C286, VL82C386 TOPCAT * ( These sets are all made
  873. * Intel 82340SX, 82340DX                    *     by VLSI Technology )
  874. *********************************************
  875. /C=13 - Chip ID(s): ( VLSI ) VL82C320 ( 286, 386SX ), VL82C330 ( 386DX )
  876.                              VL82C320A ( 286, 386SX, 486 )
  877.                     ( Intel ) 82343, 82346 ( 286, 386SX )
  878.                               82343A ( 286, 386SX, 486 )
  879.  
  880.      These chip sets map in 16k segments for the entire area from A0000
  881. to FFFFF and protect in 16k segments from C0000 to FFFFF. All shadowed
  882. rom areas are protected. The video area ( A0000-BFFFF ) and the 'boot
  883. page' ( F0000-F7FFF ) can only be utilized on the VL82C320 / 82343 'A'
  884. revisions ( this implementation was chosen to avoid the DMA limitation;
  885. see MISCELLANEOUS NOTES - DMA ACCESS TO UPPER MEMORY ). UMB_DRVR will
  886. recognize the various chips and enforce these restrictions accordingly.
  887.      These sets can remap A0000-FFFFF to the high end of extended memory
  888. if no shadowing is done and system memory is exactly 1MB or 2MB. If this
  889. remapping is active and UMB_DRVR enables shadow memory, the remapping is
  890. removed and the size of your extended memory is reduced. Note that this
  891. applies only if the system memory size is *EXACTLY* 1MB or 2MB.
  892.      If you must force a rom to be unshadowed, you need only exclude the
  893. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  894. C8000-CBFFF ).
  895. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 18
  896.  
  897.  
  898. CHIP-SET-SPECIFIC NOTES continued
  899.  
  900.  
  901. *******************************
  902. * OPTi HiD/386 AT, HiB/486 AT *
  903. *******************************
  904. /C=14 - Chip ID(s): 82C382 ( 386DX ), 82C482 ( 486 )
  905.  
  906.      These chip sets map in 16k segments from C0000 to EFFFF and one 64k
  907. segment for the system BIOS ( F0000-FFFFF ). Memory protection is done
  908. in 64k segments from C0000 to EFFFF. The hardware does not allow read /
  909. write access to the area F0000-FFFFF - i.e. the rom can be shadowed and
  910. protected, but the driver cannot use the boot page. The driver also
  911. cannot use the ram at A0000-BFFFF.
  912.      The chip sets can remap A0000-BFFFF and D0000-EFFFF to the highest
  913. area if no shadowing is done in that area. If this remapping is enabled
  914. and UMB_DRVR.SYS enables the area D0000-EFFFF, the remapping is removed
  915. and the size of your extended memory is reduced by 256k.
  916.      Although it should not be necessary, if you wish to have a rom be
  917. shadowed and protected, exclude non-rom areas within the 64k segment:
  918.  e.g. for a rom at C8000-CBFFF, exclude C0000-C7FFF and CC000-CFFFF. If
  919. you have a VGA rom at C0000-C7FFF, you only need exclude CC000-CFFFF.
  920.      If you must force a rom to be unshadowed, you need only exclude the
  921. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  922. C8000-CBFFF ).
  923.  
  924.  
  925. *********************************************
  926. * Sun Electronics SUNTAC ST62CS24, ST62CS25 *
  927. *********************************************
  928. /C=15 - Chip ID(s): ST62C241 ( 286 ), ST62C251 ( 286, 386SX )
  929.  
  930.      These chip sets have two memory-mapping modes: one for extended
  931. memory and one for expanded ( EMS ) memory. You must have your system
  932. configured for extended memory only for UMB_DRVR to recognize the chip
  933. set. Also, some BIOSs ( e.g. newer AMI ) relocate the video rom before
  934. shadowing it. This can cause fragmentation of your upper memory. If this
  935. is the case, turn off video shadowing in your CMOS / extended setup. The
  936. driver will shadow your video rom when it sets up the upper memory area.
  937. See your CMOS setup or system documentation.
  938.      These chip sets map and protect in 16k segments from C0000 to DFFFF
  939. and in 32k segments from E0000 to FFFFF.  The driver cannot use the ram
  940. at A0000-BFFFF. All shadowed roms from C0000 to DFFFF and the system
  941. BIOS are protected.
  942.      The chip sets always remap A0000-DFFFF to the highest area, and
  943. remap E0000-FFFFF there if no shadowing is done. UMB_DRVR must remove
  944. the remapping for E0000-FFFFF if active, and must use some extended
  945. memory to supply the upper memory area. Your extended memory size will
  946. be adjusted accordingly.
  947.      If you must force a rom to be unshadowed, you need only exclude the
  948. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  949. C8000-CBFFF ).
  950. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 19
  951.  
  952.  
  953. CHIP-SET-SPECIFIC NOTES continued
  954.  
  955.  
  956. *******************************
  957. * Texas Instruments TACT83000 *
  958. *******************************
  959. /C=16 - Chip ID(s): TACT83442 ( 386SX, 386DX, 486 )
  960.  
  961.      This chip set maps in 16k segments from A0000 to FFFFF, and memory
  962. protection is done in 16k segments from C0000 to FFFFF. All shadowed
  963. roms are protected.
  964.      The chip set can remap any 64k segment from A0000 to FFFFF not used
  965. for shadowing to the upper end of extended memory. If this remapping is
  966. active and UMB_DRVR.SYS uses any of the remapped area, the remapping is
  967. removed and the size of your extended memory is reduced.
  968.      If you must force a rom to be unshadowed, you need only exclude the
  969. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  970. C8000-CBFFF ).
  971.  
  972.  
  973. *****************************************************
  974. * Silicon Integrated Systems High Performance 80386 *
  975. *****************************************************
  976. /C=17 - Chip ID(s): 85C310 ( 386DX )
  977.  
  978.      This chip set maps in 16k segments from C0000 to DFFFF, and two 64k
  979. segments for E0000 and F0000. Memory protection is global, so no shadow
  980. areas are protected. The driver cannot use the area from A0000 to BFFFF.
  981.      The chip set, depending on memory configuration, can remap either
  982. 256K or 384K of unused shadow area to the upper end of extended memory.
  983. If this remapping is active and UMB_DRVR uses any of the remapped area,
  984. the remapping is removed and your extended memory size is reduced.
  985.      If you must force a rom to be unshadowed, you need only exclude the
  986. 16k segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  987. C8000-CBFFF ).
  988.  
  989.  
  990. ******************************************************
  991. * Silicon Integrated Systems High Performance ISA486 *
  992. ******************************************************
  993. /C=18 - Chip ID(s): 85C401 ( 486 )
  994.  
  995.      This chip set maps in 32k segments from C0000 to EFFFF, and one 64k
  996. segment for F0000. Memory protection is global, so no shadowed areas are
  997. protected. The driver cannot use the area from A0000 to BFFFF.
  998.      If you must force a rom to be unshadowed, you must exclude the 32k
  999. segment(s) it occupies ( e.g. for a disk rom at C8000-CBFFF, exclude
  1000. C8000-CFFFF ).
  1001. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 20
  1002.  
  1003.  
  1004. INSTALLATION
  1005.  
  1006.      *PLEASE BE SURE YOU HAVE REVIEWED THE MISCELLANEOUS AND CHIP-SET-
  1007. SPECIFIC NOTES* prior to installing. Also, make sure you have backed-up
  1008. your system and that you have a diskette you can boot from in case you
  1009. have problems with your CONFIG.SYS settings.
  1010.      Installation ( preferably as the first driver ) is via the lines:
  1011.  
  1012.          DEVICE=UMB_DRVR.SYS /C=nn [/M=ssssssssssssssssssssssss]
  1013.          DOS=[HIGH|LOW],UMB  ( *REQUIRED* - turn on DOS 5 UMB support )
  1014.  
  1015. in your CONFIG.SYS file. The /C= parameter is required - nn is the chip
  1016. set from 'CHIP-SET-SPECIFIC NOTES'. The /M= parameter is optional and is
  1017. used to override defaults. It contains characters corresponding to 16K
  1018. memory blocks at the following addresses:
  1019.  
  1020.           /M=ssssssssssssssssssssssss
  1021.         A0000'||||||||||||||||||||||`FC000---| Only '..' and '--' may be
  1022.          A4000'||||||||||||||||||||`F8000----| used for the system BIOS.
  1023.   Video   A8000'||||||||||||||||||`F4000--|
  1024.    RAM     AC000'||||||||||||||||`F0000---| '..', '--', '++', and '##'
  1025.     area    B0000'||||||||||||||`EC000    | may be used for boot page.
  1026.              B4000'||||||||||||`E8000     | Use '##' to force area to be
  1027.               B8000'||||||||||`E4000      | shadowed as part of BIOS.
  1028.                BC000'||||||||`E0000
  1029.                      |||||||`DC000
  1030.                      ||||||`D8000     Upper
  1031.                      |||||`D4000       Memory
  1032.                      ||||`D0000         area
  1033.                      |||`CC000
  1034.                      ||`C8000
  1035.                      |`C4000
  1036.                      `C0000
  1037.  
  1038.            s = '.' Allow default use of block
  1039.                '-' Force block to be unused and unshadowed
  1040.                '+' Force block usage for UMBs or DOS base ram expansion
  1041.  
  1042. The /M= parameter must always be supplied as all 24 characters, using
  1043. the '.' character to fill any positions not forced on or off. For
  1044. example, on a VGA system using video memory from A0000 to BFFFF, if
  1045. it is in CGA 80 x 25 mode, the only video memory in use is B8000-BFFFF.
  1046. In this case, the memory from A0000-AFFFF may be used to expand DOS
  1047. base memory beyond 640K ( with some VGA cards ) by using the parameter:
  1048.          /M=++++....................
  1049. Of course, with the system configured like this, if you change the video
  1050. mode, undefined ( read as disaster city! ) results will occur.
  1051. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 21
  1052.  
  1053.  
  1054. ERROR MESSAGES
  1055.  
  1056.  
  1057. DMA NOT SUPPORTED ( WARNING )
  1058.  
  1059.      See MISCELLANEOUS NOTES - DMA ACCESS TO UPPER MEMORY.
  1060.  
  1061.  
  1062. SHADOW RAM TEST FAILURE
  1063.  
  1064.      This message is issued when the shadow ram read/write test fails.
  1065. It is usually an indication that you are trying to use memory that is
  1066. not available, or ( possibly ) you do not have the chip set you have
  1067. specified. Check your CMOS setup and any jumpers or switches per your
  1068. hardware documentation. Also review CHIP-SET-SPECIFIC NOTES earlier in
  1069. this document for any requirements.
  1070.      This can also occur if you are trying the example listed in the
  1071. INSTALLATION section using a portion of the video ram area on a VGA
  1072. system in CGA mode and your VGA hardware will not allow it.
  1073.  
  1074.  
  1075. CHIP SET NOT RECOGNIZED
  1076.  
  1077.      As much as possible, UMB_DRVR.SYS tries to verify that you have the
  1078. chip set you indicated in the /C= parameter. If you are sure you have
  1079. the chip set and have correctly specified it, contact me ( see TECHNICAL
  1080. SUPPORT ) and I will try to straighten things out.
  1081.      This message can also occur if a program ( e.g CMOS setup from DOS,
  1082. disk defragger ) reboots the system in a certain way. In this case, it
  1083. can be cleared with the reset button or by power down / power up.
  1084.  
  1085.  
  1086. XMS ALREADY INSTALLED
  1087.  
  1088.      You have not installed UMB_DRVR.SYS before HIMEM.SYS ( UMB_DRVR.SYS
  1089. issues message ), or you have omitted or incorrectly specified the line
  1090. 'DOS=xxxx,UMB' in your CONFIG.SYS ( HIMEM.SYS issues message ). Correct
  1091. your CONFIG.SYS file and and reboot.
  1092.  
  1093.  
  1094. INCORRECT DOS VERSION
  1095.  
  1096.      UMB_DRVR.SYS requires MS/DOS 5.0 for proper operation.
  1097.  
  1098.  
  1099. INVALID PARAMETER(S)
  1100.  
  1101.      On the DEVICE= statement for UMB_DRVR.SYS you have: 1) omitted or
  1102. incorrectly specified the /C= parameter, 2) incorrectly specified the
  1103. /M= parameter, or 3) included extra parameter(s).
  1104.      Check that you have entered the proper 2-digit number for your chip
  1105. set, that ( if specified ) the /M= parameter contains 24 characters from
  1106. the set '.' (period), '-' (minus), '+' (plus) and '#' (pound sign), and
  1107. that nothing else is specified. Correct your CONFIG.SYS file and reboot.
  1108. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 22
  1109.  
  1110.  
  1111. BAD NEWS ( CHIPS THAT WILL NOT BE SUPPORTED )
  1112.  
  1113.      Chips & Technologies: CS8220(82C201/82C202) [1]
  1114.      Intel: 82335/82335SX [2]
  1115.      Sun Electronics ( SUNTAC ): ST62CS02(ST62BC002) [1]
  1116.      United Microelectronics ( UMC ): UM82C230(UM82C231) [1]
  1117.      Western Digital: ( Faraday ) FE3021/FE3021A [2]
  1118.  
  1119.      Notes:
  1120.           [1] - No shadow ram support
  1121.           [2] - Lock feature prohibits access
  1122.  
  1123.  
  1124. MAYBE? ( NEED TECHNICAL DATA TO SUPPORT )
  1125.  
  1126.      ACER
  1127.      American Megatrends (AMI) - Megatrends custom chips, *NOT* BIOS
  1128.      COMPAQ
  1129.      IBM PS/2
  1130.      Micronics - custom chips
  1131.      PC-Chips brand chip set(s)
  1132.      Toshiba
  1133.  
  1134.      I have been unable to get any documentation for these systems. If
  1135.      you can have your system vendor or the chip set manufacturer
  1136.      contact me, I will try to include support for them.
  1137.  
  1138.  
  1139. COMING ATTRACTIONS ( SUPPORT PLANNED OR UNDER DEVELOPMENT )
  1140.  
  1141.      ACC Microelectronics: 2036 [2], 2046
  1142.      Headland Technology: HT12/HT15 [1], HT18/HT21/HT22 [2], HT322
  1143.      Intel: 82350 EISA(82359), 80386SL(Intel386SL)
  1144.      OPTi: L1/L2 Notebook
  1145.      Symphony Laboratories: SL82C360(SL82C361), SL82C460(SL82C461)
  1146.      Texas Instruments: TACT84500 EISA(TACT84542)
  1147.      United Microelectronics ( UMC ): UM82C380(UM82C384) [1]
  1148.      VLSI Technology: VL82C486
  1149.      Western Digital: WD6000/WD75C10/WD76C10/WD7710/WD7910 [1]
  1150.      ZyMos Corporation: POACH(82C230/82C231)
  1151.  
  1152.      Notes:
  1153.           [1] - Support minimal ( maximum 64K UMB area ).
  1154.           [2] - Support limited ( maximum 128K UMB area ).
  1155.  
  1156.      If your chip set is not listed, have your system vendor or the chip
  1157.      set manufacturer contact me and I will try to support it.
  1158. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 23
  1159.  
  1160.  
  1161.  
  1162. COMING ATTRACTIONS ( SUPPORT PLANNED OR UNDER DEVELOPMENT ) continued
  1163.  
  1164.  
  1165.  
  1166.      A newer, more flexible ( read as less Neanderthal, approaching the
  1167. Bronze Age ) user interface is coming as soon as I get the time.
  1168.  
  1169.      Also in the works are features to save even more precious memory
  1170. below 640K by:
  1171.      - loading the primary shell ( COMMAND.COM ) into upper memory
  1172.      - relocating all DOS areas possible to upper memory, including
  1173.          FCBS=, FILES=, BUFFERS=, STACKS=, and LASTDRIVE=
  1174.      - allowing the lower portion of the video ram area to be switched
  1175.          in and out to expand DOS base ram beyond 640K but not inhibit
  1176.          graphics modes ( only for chip sets with video area support )
  1177.  
  1178.      I have ( I think ) found a way to *reliably* test for and list the
  1179. chip set in a machine. I will be including a separate program to do this
  1180. in the package soon. Of course, it will only recognize the chip sets it
  1181. supports, so a negative result will not necessarily mean you have a chip
  1182. set that will not be supported later.
  1183.  
  1184.      If there is enough interest, I will also write device-specific EMS
  1185. drivers for the hardware facilities in the EMS-capable chip sets. Please
  1186. Email or surface mail your thoughts ( no phone calls on this, please -
  1187. save those for support questions ).
  1188. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 24
  1189.  
  1190.  
  1191.  
  1192. REVISION HISTORY
  1193.  
  1194.  
  1195.  
  1196.      5.22 [02/20/92] - 'Unbroke' cache systems broken in 5.17;
  1197.                        ( Hopefully ) improved handling of false parity
  1198.                          errors during processing;
  1199.                        Added code to handle boot page for MR BIOS;
  1200.                        Fixed handling of certain embedded video roms;
  1201.                        Released UMB_EMS4 EMS simulator.
  1202.  
  1203.      5.21 [02/03/92] - Added 'User-Specified Available Memory' mode;
  1204.                        Revised doc for Windows 386 Enhanced mode.
  1205.      5.20 [01/15/92] - Important restriction noted for SUNTAC chip sets;
  1206.                        Fix for warm boot intercept on all chip sets
  1207.                          ( by George, I think he's got it! ).
  1208.      5.19 [01/14/92] - Added Silicon Integrated Systems 80386, ISA486;
  1209.                        Fix for warm boot intercept on all chip sets
  1210.                          ( this is getting really frustrating! ).
  1211.      5.18 [01/09/92] - Fix for warm boot intercept on all chip sets to
  1212.                          allow any disk cache to flush its buffers;
  1213.                        32K more upper memory with VGA on some chip sets.
  1214.      5.17 [01/06/92] - Added Texas Instruments TACT83000;
  1215.                        Fix for detection of expansion roms ( all sets ),
  1216.                          warm boot failures on certain BIOSs;
  1217.                        Found 16K to 32K more upper memory on some BIOSs.
  1218.      5.16 [12/30/91] - Fix for warm boot failure with another BIOS type;
  1219.                        Internal code restucturing in preparation for
  1220.                          future enhancements;
  1221.                        Introduction amplified to include tutorial on
  1222.                          different types of extended / expanded / upper
  1223.                          memory management.
  1224.      5.15 [12/24/91] - Added Sun Electronics SUNTAC ST62CS24, ST62CS25;
  1225.                        Fixes for parity errors during DMA test and warm
  1226.                          boot failures with some BIOS implementations.
  1227.      5.14 [11/27/91] - Relaxed all chip-set-verification checks to avoid
  1228.                          problems accepting some BIOS setups as valid.
  1229.      5.13 [11/23/91] - Added Texas Instruments TACT82S411, UMC UM82C210;
  1230.                        Added DMA verification code and warning message;
  1231.                        Documentation expanded and reorganized (again!).
  1232.      5.12 [11/19/91] - Fix for OPTi HiD/386, HiB/486 memory remapping.
  1233.      5.11 [11/17/91] - Fixes for OPTi Sx/AT, Sx/AT Cache, DX/BB PC/AT;
  1234.                        Relaxed validation check for Chips & Technologies
  1235.                          CS8230, CS8231, CS8233, and CS82310;
  1236.                        Documentation updated for various chip set IDs
  1237.                          from Chips and Technologies.
  1238. UMB_DRVR.DOC       Version 5.22             02/20/92            Page 25
  1239.  
  1240.  
  1241.  
  1242. REVISION HISTORY continued
  1243.  
  1244.  
  1245.  
  1246.      5.10 [11/12/91] - Added Chips & Technologies PEAK/DM,
  1247.                          OPTi Sx/AT Cache, HiD/386 AT, HiB/486 AT;
  1248.                        Fixes for VLSI Technology TOPCAT / Intel 82340,
  1249.                          special conditions remapping extended memory
  1250.                          on Chips & Technologies NEAT, LeAPset and SCAT,
  1251.                          miscellaneous logic improvements;
  1252.                        Documentation updated and reorganized.
  1253.      5.09 [10/25/91] - Fix for VLSI Technology TOPCAT / Intel 82340.
  1254.      5.08 [10/14/91] - Fix for boot page special condition.
  1255.      5.07 [10/13/91] - Added VLSI Technology SCAMP,TOPCAT / Intel 82340.
  1256.      5.06 [10/12/91] - Added Elite Microelectronics Eagle, Falcon.
  1257.      5.05 [10/09/91] - Added OPTi Sx/AT, DX/BB PC/AT, 386WB PC/AT,
  1258.                          486SXWB PC/AT, 386/486WB EISA.
  1259.      5.04 [10/02/91] - Added ETEQ Micro COUGAR II.
  1260.      5.03 [09/21/91] - Added Chips & Technologies 386/AT,
  1261.                          386/AT Cache, PEAK, SCAT, ELEAT;
  1262.                        Removed setup requirements.
  1263.      5.02 [09/12/91] - Added FOREX FRX32C300;
  1264.                        Added support for use of 'boot page' area;
  1265.                        Fix for VLSI Technology VL82C200;
  1266.                        Default all roms shadowed.
  1267.      5.01 [09/04/91] - Added VLSI Technology VL82C200.
  1268.      5.00 [09/01/91] - Support for Chips & Technologies NEAT, LeAPset;
  1269.                        Original release version.
  1270.  
  1271.                    ***** END OF DOCUMENTATION *****
  1272.        UMB_DRVR.SYS, Version 5.22 [ 02/20/92 ] Registration Form
  1273.                 ***** Please Type or Print Clearly *****
  1274.  
  1275.  
  1276.         Name:____________________________________________________
  1277.  
  1278.         Address:_________________________________________________
  1279.  
  1280.                 _________________________________________________
  1281.  
  1282.         City/State_______________________________________________
  1283.  
  1284.         Zip/Postal Code__________________________________________
  1285.  
  1286.  
  1287.  
  1288.   ***** Telephone number_________________________________________
  1289.   *   *
  1290.   *   * Email system / routing / ID______________________________
  1291.   *   *
  1292.   *   *      ____________________________________________________
  1293.   *   *
  1294.   * O * Computer description, configuration, chip set, etc.
  1295.   *   *
  1296.   * P *      ____________________________________________________
  1297.   *   *
  1298.   * T *      ____________________________________________________
  1299.   *   *
  1300.   * I *      ____________________________________________________
  1301.   *   *
  1302.   * O * Comments_________________________________________________
  1303.   *   *
  1304.   * N *      ____________________________________________________
  1305.   *   *
  1306.   * A *      ____________________________________________________
  1307.   *   *
  1308.   * L *      ____________________________________________________
  1309.   *   *
  1310.   *   *      ____________________________________________________
  1311.   *   *
  1312.   *   *      ____________________________________________________
  1313.   *   *
  1314.   *****      ____________________________________________________
  1315.  
  1316.  
  1317.  
  1318.         Cost ( U.S.Funds ): $25 ( no credit cards )
  1319.  
  1320.         Mail to: Christopher Blum
  1321.                  1022 East Wayne Avenue
  1322.                  Wooster, Ohio 44691
  1323.